home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / ODF Release 3 / ODFDev / ODF / Found / FWString / PRStrRep.h < prev    next >
Encoding:
Text File  |  1996-12-16  |  1.3 KB  |  51 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PRStrRep.h
  4. //    Release Version:    $ ODF 3 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef PRSTRREP_H
  11. #define PRSTRREP_H
  12.  
  13. #ifndef FWODEXCE_H
  14. #include "FWODExce.h"
  15. #endif
  16.  
  17. #ifndef FWSTDDEF_H
  18. #include "FWStdDef.h"
  19. #endif
  20.  
  21. #ifndef SLSTRREP_H
  22. #include "SLStrRep.h"
  23. #endif
  24.  
  25. #ifndef SLTXTPAR_H
  26. #include "SLTxtPar.h"
  27. #endif
  28.  
  29. #ifndef FWODTYPS_H
  30. #include "FWODTyps.h"
  31. #endif
  32.  
  33. //========================================================================================
  34. //    STRUCT FW_SPrivStringRep
  35. //========================================================================================
  36.  
  37. // The definition of this structure changed between ODF Release 2 and Release 3. In ODF
  38. // Releases prior to 3, this structure contained an fUsingStaticBuffer data member that
  39. // indicated whether or not the representation object referenced a buffer on the stack.
  40. // In release 3, support for stack-based string buffers was eliminated.
  41.  
  42. struct FW_SPrivStringRep
  43. {
  44.     ODIText                fText;
  45.     FW_ODITextParams    fParams;
  46.     long                fRefCount;
  47.     FW_Boolean            fLocked;
  48. };
  49.  
  50. #endif
  51.